home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World Komputer 2010 April
/
PCWorld0410.iso
/
pluginy Firefox
/
9825
/
9825.xpi
/
chrome
/
content
/
message_window.js
< prev
next >
Wrap
Text File
|
2009-07-17
|
477b
|
14 lines
var MessageWindow = function()
{
$(document).ready(function()
{
document.documentElement.setAttribute("title", window.arguments[0]);
var message_label = document.getElementById("message-label");
message_label.value = window.arguments[1];
setTimeout(function()
{
window.arguments[2]();
window.close();
}, 300);//at least show window for a bit, also to prevent problems
});
}();